home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / programming / other / gtlayout / source / gtlayout_data.c < prev    next >
C/C++ Source or Header  |  1999-04-19  |  841b  |  41 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1998 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=8
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #ifndef LINK_LIB
  15. struct Library * SysBase;
  16. #endif /* !LINK_LIB */
  17.  
  18. struct Library *    IntuitionBase;
  19. struct Library *    GfxBase;
  20. struct Library *    UtilityBase;
  21. struct Library *    GadToolsBase;
  22. struct Library *    KeymapBase;
  23. struct SignalSemaphore    LTP_LockSemaphore;
  24. struct MinList        LTP_LockList;
  25. struct IClass *        LTP_ImageClass;
  26. struct IClass *        LTP_LevelClass;
  27. struct IClass *        LTP_PopupClass;
  28. struct IClass *        LTP_TabClass;
  29. struct MinList        LTP_EmptyList;
  30.  
  31. STRPTR            LTP_DecimalPoint;
  32. STRPTR            LTP_NumberFormat;
  33.  
  34. BOOLEAN            V39;
  35. BOOLEAN            V40;
  36.  
  37. #ifdef DO_PICKSHORTCUTS
  38. UBYTE *            LTP_Keys[2];
  39. struct SignalSemaphore    LTP_KeySemaphore;
  40. #endif /* DO_PICKSHORTCUTS */
  41.